StringIsGreaterThanString
Type
operator
Summary
Determines whether Left is greater than Right under a char by char comparison
Syntax
<Left> > <Right>
Description
Left is greater than Right if and only if Left and Right are not equal, and the unicode codepoint of the first char in Left that is not equal to the corresponding char in Right is of greater value.
Parameters
| Name | Type | Description |
|---|---|---|
Left | An expression which evaluates to a string. | |
Right | An expression which evaluates to a string. |
Value
| Name | Type | Description |
|---|---|---|
return | Returns true if Left is greater than Right. |